home *** CD-ROM | disk | FTP | other *** search
- /* Program to list the names of everyone on the current project. */
-
- /* Make sure AB is running. */
- if ~show(PORTS, 'AB_AREXX') then do
- say 'AB is not currently running! Please start it and try again.'
- exit
- end
-
- address 'AB_AREXX'
-
- options results
-
- END = 0
-
- /* Go to the first entry. */
- 'FIRST_ENTRY'
-
- /* Continue until we have reached the end of the project. */
- do while END = 0
-
- /* Print the name of this entry. */
- 'GET_ENTRY_DETAILS 1'
- say 'Name: 'RESULT
-
- /* Go to the next entry. */
- 'NEXT_ENTRY'
- END = RC
-
- end
-
- exit
-